{% extends 'base.html' %} {% load static %} {% block title %}Services{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if services %} {% for service in services %}

{{ service.name }}

{{ service.duration }} minutes ${{ service.price }} {% if service.is_active %}Active{% else %}Inactive{% endif %}
{% if user.is_staff %} {% endif %}
{% if service.description %}
{{ service.description|linebreaksbr }}
{% endif %}
Created on {{ service.created_at|date:"F j, Y" }} Book Now
{% endfor %} {% else %}

No Services Available

There are no services to display at the moment.

{% if user.is_staff %} Add Your First Service {% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}